home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / VECTBAL2.ZIP / XFILL.H < prev    next >
C/C++ Source or Header  |  1993-10-03  |  1KB  |  52 lines

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XFILL - header file
  4. ;
  5. ;
  6. ;
  7. ; ****** XLIB - Mode X graphics library                ****************
  8. ; ******                                               ****************
  9. ; ****** Written By Themie Gouthas                     ****************
  10. ;
  11. ; egg@dstos3.dsto.gov.au
  12. ; teg@bart.dsto.gov.au
  13. ;
  14. ;  Terminology & notes:
  15. ;         VRAM ==   Video RAM
  16. ;         SRAM ==   System RAM
  17. ;         X coordinates are in pixels unless explicitly stated
  18. ;
  19. ;----------------------------------------------------------------------*/
  20.  
  21. #ifndef _XFILL_H_
  22. #define _XFILL_H_
  23.  
  24.  
  25. /* FUNCTIONS =========================================================== */
  26.  
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30.  
  31. int x_flood_fill(int x,
  32.                  int y,
  33.                  unsigned ofs,
  34.                  int color
  35.                  );
  36.  
  37. int x_boundary_fill(int x,
  38.                     int y,
  39.                     unsigned ofs,
  40.                     int boundary,
  41.                     int color
  42.                  );
  43.  
  44.  
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48.  
  49. #endif
  50.  
  51.  
  52.